home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / Software / 00018_gotoAceExpert.ls < prev    next >
Encoding:
Text File  |  2000-10-18  |  380 b   |  20 lines

  1. on mouseWithin
  2.   cursor(280)
  3.   put "Click to read more about the full version of AceExpert 3.0 - PC ONLY" into member "InfoField"
  4. end
  5.  
  6. on mouseLeave
  7.   cursor(0)
  8.   put EMPTY into member "InfoField"
  9. end
  10.  
  11. on mouseDown
  12.   if the platform contains "Windows" then
  13.     go("Title1", "Authoring")
  14.   else
  15.     if the platform contains "Macintosh" then
  16.       nothing()
  17.     end if
  18.   end if
  19. end
  20.